home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestTimings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  892 b   |  37 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestTimings.h
  3.  
  4.     Contains:    Declaration for the TTestTimings class
  5.  
  6.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTTIMINGS__
  11. #define __TESTTIMINGS__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestTimings
  19. ********************************************************************************/
  20.  
  21. #define kTTestTimingsID    kTestToolPrefix "TTestTimings,1.2"
  22.  
  23. class TTestTimings : public TTestTool
  24. {
  25.     public:
  26.                             _CDECL TTestTimings();
  27.         virtual                ~_CDECL TTestTimings();
  28.         
  29.         virtual void        _CDECL InitTest(BooleanParm verbose, BooleanParm debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
  32.         virtual void        _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
  33.         
  34. };
  35.  
  36. #endif
  37.